Commit 367a51ed authored by Aadil M. Alli's avatar Aadil M. Alli

Other tools

parent d8b4236a
...@@ -140,6 +140,34 @@ Deleting the virtual environment removes all installed packages and the environm ...@@ -140,6 +140,34 @@ Deleting the virtual environment removes all installed packages and the environm
rm -rf research1 rm -rf research1
``` ```
#### Other tools
#### Virtualenv
Install virtualenv
```
python -m pip --user virtualenv
```
Create an environment
```
virtualenv <environment_name>
```
Activate the environment
```
<environment_name>/bin/activate
```
#### Conda
Create an environment with conda
```
conda create --name <environment_name> python=<version>
```
Activate the environment
```
conda activate <environment_name>
```
## R ## R
### How to create and use a virtual environment in R ### How to create and use a virtual environment in R
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment