You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
761 B
Bash
29 lines
761 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# to install anaconda
|
|
# https://docs.anaconda.com/anaconda/install/linux/
|
|
|
|
source /home/agropunx/anaconda3/etc/profile.d/conda.sh
|
|
conda create -y --name geografia_research python=3.8 pip
|
|
conda activate geografia
|
|
|
|
# conda env
|
|
conda install -c anaconda ipykernel
|
|
python -m ipykernel install --user --name=geografia_research #-f ./geografia_research.yml
|
|
|
|
# general
|
|
pip install flask flask_bootstrap numpy pandas scipy
|
|
pip install protobuf==3.20
|
|
|
|
|
|
# colemano
|
|
pip install imutils==0.5.4
|
|
pip install tensorflow==2.8.0
|
|
pip install opencv-python==4.2.0.32
|
|
|
|
# ccq
|
|
pip install transformers==4.14.1
|
|
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch # cudatoolkit not present in pip
|
|
pip install spacy==3.3.0
|