Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
docs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
StarHPC
docs
Commits
367a51ed
Commit
367a51ed
authored
Sep 25, 2024
by
Aadil M. Alli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Other tools
parent
d8b4236a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
virtual-env.md
software/virtual-env.md
+28
-0
No files found.
software/virtual-env.md
View file @
367a51ed
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment