...
First, create an IDAS instance with Python, R, or Julia. If you are a student in a class that uses IDAS, follow the instructions here to access your class instance.
In the top right corner of your IDAS home page, click New.
Click Terminal in order to start a Terminal session.
If this is your first time using the Terminal, initialize your shell.
Code Block conda init bash
- This will create a .bashrc file in your home directory. Then close and restart Terminal.
Source the .bashrc file just created. You have to source .bashrc every time you start a new Terminal session.
Code Block |
---|
source .bashrc |
The command prompt in your Terminal will change to indicate the active environment, which is the "base" environment by default.
Code Block |
---|
(base) hawkid@jupyter-notebook-research-hawkid:~$ |
Create a conda environment with Python 3.8
...