Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup_ba_env.sh - Ensure setuptools version <=58 #12

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup_ba_env.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
### create satnerf venv
conda create -n ba -c conda-forge python=3.8
conda create -n ba -c conda-forge python=3.8 libgdal
conda activate ba
python3 -m pip install git+https://github.com/centreborelli/sat-bundleadjust
python3 -m pip install --ignore-installed certifi gdal
python3 -m pip install --force-reinstall -v "setuptools<=58" pip
python3 -m pip install --ignore-installed git+https://github.com/centreborelli/sat-bundleadjust
pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 -f https://download.pytorch.org/whl/torch_stable.html
pip install fire
#pip install "pyproj>=2.0.2,<3.0.0"
conda deactivate
echo "ba conda env created !"