Skip to content
Snippets Groups Projects
Commit 7c30a0e2 authored by Michael Blaschek's avatar Michael Blaschek :bicyclist:
Browse files

added user site packages import instructions

parent 5754e3b6
Branches
Tags
No related merge requests found
......@@ -758,6 +758,19 @@ zope.interface 4.7.1 py38h7b6447c_0
zstd 1.5.0 ha95c52a_0 conda-forge
```
### Import user-site packages
It is possible to install user site packages into your `.local/lib/python3.*` directory:
```bash
# installing a user site package
/gpfs/data/fs71386/imgw/run.sh pip install --user [package]
```
```python
import sys, site
sys.path.append(site.site.getusersitepackages())
# This will add the correct path.
```
Then you will be able to load all packages that are located in the user site.
## Debugging on VSC-4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment