-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscience-career-tempenv.yml
37 lines (34 loc) · 1.23 KB
/
science-career-tempenv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# enviroment for science-career. "test" b/c currently not used directly.
# install the env with `conda activate; conda env create --file science-career-tempenv.yml` from the directory where this file is.
# Idea: use it for linking; try out how it works otherwise, and update the file as necessary. eventually, add it as default env to the project
name: science-career-tempenv
channels:
- conda-forge
- defaults
dependencies:
- geopy
- ipykernel
- matplotlib
- nltk
- numpy
- openpyxl
- pandas
- pandoc
- pip
- pytest
- python ==3.9
- scikit-learn
- scipy
- sqlite
- xlrd
- fasttext
- jupyterlab
# - pip:
- dedupe==2.0.11
# install via pip fails but conda works
#prefix: $HOME/miniconda3/envs/science-career-tempenv ## prefix not strictly necessary
# Other notes
# use python==3.9: when using >=3.8, it uses 3.10. I have a local installation for this, and various packages.
# Now conda will first use these https://stackoverflow.com/questions/62352699/conda-uses-local-packages
# Instead of deleting all the packages in ~/.local/lib/python3.10/site-packages (and possibly breaking some scripts),
# for now I just use a python version that is not locally installed to circumvent the problem.