...
Below are some basic ways to install packages in Python, R, and Julia. We also strongly recommend using tools like conda and Python virtual environments to manage your projects.
Installing Python Packages
...
- Click the New drop-down menu at the top right corner and then choose Terminal.
In the new browser tab with terminal access, type the Type the following command in Terminal and press enter:
Code Block pip3python3 -m pip install --upgradeuser PACKAGE_NAME
- Check if the package has been successfully installed.
- Close the tab.
Notes about Python package installation
1. Please see the pip documentation for more information about using pip.
2. Installing Python packages this way, you can find your Python packages in your user library:
Code Block |
---|
/home/HawkID/.local/lib/pythonx.x/site-packages |
where HawkID is your HawkID, and pythonx.x indicates the Python version, for example, Python 3.7.
3. If you are using a user-installed Python package in Terminal, you will need to add your user library to PATH. In Terminal:
First, crease a .bashrc if you haven't done so before:
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.
Code Block |
---|
source .bashrc |
Installing R Packages
Using RStudio
...