forked from lorserker/ben
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conda_setup.sh
33 lines (21 loc) · 879 Bytes
/
conda_setup.sh
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
conda create -n ben python=3.9
conda activate ben
conda install numpy
conda install scipy
conda install matplotlib
conda install jupyter
conda install scikit-learn
conda install pandas
pip install tqdm
pip install websockets
pip install "tensorflow>=2.0"
pip install grpcio-tools
pip install bottle
pip install gevent
pip install pythonnet
# When running ben on ubuntu 22.04, the following error happens during card play.
#OSError: libboost_thread.so.1.71.0: cannot open shared object file: No such file or directory
#Solution: Recompile the double dummy solver library.
#Recompilation will create a new libdds.so file which you need to copy into the bin folder of ben (overwriting the file which is already there)
#In the compilation process of DDS you may have to install the libboost-thread dependency by running the command
# sudo apt install libboost-thread-dev