- Python 3
- Unix based machine (mac, linux, etc)
help -- Shows this
new -- creates a new virtual environment (ex: vman new --name venv-name)
remove -- removes a virtual environment (ex: vman remove venv-name)
run -- runs a python file with a virtual environment (ex: vman run venv-name python-file.py)
install -- installs a package into a the selected virtual environment (ex: vman install package-name venv-name)
info -- gets the installed packages from a virtual environment (ex: vman info venv-name)
uninstall -- uninstalls the selected package (ex: vman uninstall package-name venv-name)
- Download the vman-installer
- Open your terminal and type
chmod +x /path/to/file/vman-installer - Then type
./path/to/file/vman-installer - Let it install
- Type
vman help