You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone --recursive https://github.com/DeepForge-Tech/DeepForge-Toolset.git
cd DeepForge-Toolset
python .\ConfigureTools\InstallPackages.py
mkdir build
cd build
cmake ..-DCMAKE_BUILD_TYPE="Release"
cmake --build .
# Run DeepForge-Toolset
cd bin && .\DeepForge-Toolset
🐧Linux
git clone --recursive https://github.com/DeepForge-Tech/DeepForge-Toolset.git
cd DeepForge-Toolset
python3 ./ConfigureTools/InstallPackages.py
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE="Release"
cmake --build .# Run DeepForge-Toolsetcd bin && sudo .\DeepForge-Toolset
🍏 macOS
git clone --recursive https://github.com/DeepForge-Tech/DeepForge-Toolset.git
cd DeepForge-Toolset
# If you have installed python 3
python3 ./ConfigureTools/InstallPackages.py
# else
sudo bash ./ConfigureTools/InstallPackages.sh
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE="Release"
cmake --build .# Run DeepForge-Toolsetcd bin && .\DeepForge-Toolset