Reputation: 439
Lets say I wanted to add an external package to my python installation. If Canopy doesn't have it then you have to open up the GUI click tools and open the Canopy terminal and run pip install package
which is fine and easy unless you don't have a graphical desktop installed or you are using ssh.
How do I: a) open the the Canopy Terminal tool and/or b) install external packages using only the system command line?
Upvotes: 2
Views: 2085
Reputation: 2232
When you want to use GUI you can see here useful tutorial. For example, in ubuntu:
In the case when you want to use canopy without GUI, you need to activate your virtual environment using source: ~/my_venv/bin/activate
. More about you can find here.
Upvotes: 0
Reputation: 5810
Just put the Canopy User Python environment at the head of your PATH. See this article: https://support.enthought.com/entries/23646538-Make-Canopy-User-Python-be-your-default-Python
Upvotes: 2