...
This article outlines the steps to install Python packages using pip (Option 1 above). We also recommend using tools like Conda and Python Virtual Environments and Conda in IDAS to manage your projects.
...
Code Block |
---|
touch ~/.bashrc |
Add your user library to PATH
:
Code Block |
---|
echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc |
And then run the following in Terminal. Note that .bashrc
needs to be sourced every time you start a new Terminal session.
...