forked from zhaozh10/ChatCAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
40 lines (31 loc) · 1014 Bytes
/
requirements.txt
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
38
39
40
beautifulsoup4==4.12.2
# clip==1.0 This did not work, instead when directly to github repo: https://github.com/openai/CLIP, needs CUDA which needs GPUs, using Lonestar6 from TCAA
easydict==1.10
google==3.0.0
gradio==3.31.0
jieba==0.42.1
langchain==0.0.180
modelscope==1.5.2
nibabel==4.0.2
numpy==1.23.2
opencv_contrib_python==4.6.0.66
pandas==1.4.3 # pandas would not install
Pillow==9.5.0
revChatGPT==5.1.3
scikit_learn==1.2.2
scipy==1.9.0 # scipy would not install, just did "conda install scipy"
setuptools==59.8.0
text2vec==1.1.8
torch==2.0.1
torchvision==0.15.2
tqdm==4.65.0
transformers==4.26.1
"""
Steps I took to install the requirements:
Request a compute node on Lonestar6: idev -p gpu-a100-dev -N 1 -n 1 -t 1:00:00
Load the necessary modules: module load python3/3.9.7
Create a virtual environment: python3.9 -m venv chatcad-env
Activate the virtual environment: source chatcad-env/bin/activate
Install clip: pip install openai-clip
Install the requirements: pip install -r requirements.txt
"""