If you wish to make your Python 3.x application more portablewith dependencies without making a container. What sequence ofcommands are needed to setup a python virtual environment?
a).
pip3 install venv && python3 ./activate.py
b).
python3 --user virtualenv && activate.py
c).
pip3 install virtualenv && ./activate.py
d).
python3 -m venv env && source env/bin/activate
If you wish to make your Python 3.x application more portable with dependencies without making a container. What sequenc
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am