-
Notifications
You must be signed in to change notification settings - Fork 256
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
Is there a way to install without conda on windows? #41
Comments
add path variable work |
Definitely you could run it without conda. |
I am trying to install it in a virtual environment with venv. #15 (comment) of issues/15 Even if you install the software according to the instructions in |
According to your error, you attempted to run python in wrong directory, you should not run it in the venv folder, you should run it the parent folder |
I tried to run it in the parent folder. |
It is definitely that you miss lots of dependents which need to install manually |
app.py at the beginning of the pip install package/onnxruntime_gpu-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl --force-reinstall --no-deps and pip install package/nvdiffrast-0.3.1.torch-cp310-cp310-linux_x86_64.whl --force-reinstall --no-deps Since it is described as My OS is Windows, not ylinux, so that is where the error occurs. therefore onnxruntime-win-x64-gpu-1.17.0 and nvdiffrast-0.3.1 source in the package folder and change the notation at the beginning of app.py to pip install package/onnxruntime-win-x64-gpu-1.17.0 --force-reinstall --no-deps and pip install package/nvdiffrast-0.3.1 --force-reinstall --no-deps and then change it to I ran app.py and it seems to install nvdiffrast-0.3.1, but onnxruntime-win-x64-gpu-1.17.0 will cause an error The error log is as follows |
Clone the onnxruntime git code in the package folder and Change the notation at the beginning of app.py to pip install package/onnxruntime --force-reinstall --no-deps app.py I tried to start the error × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. |
I think we are one step closer to launching in a virtual environment. × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. |
Originally in venv\Lib\site-packages\spaces\zero\gradio.py there is no try_ itself and def try_process_queue_event. |
I got as far as cloning pytorch3d's git. |
Unique3D has too many dependencies of dependencies and more dependencies of dependencies I gave up installing on Windows. |
My PC is not able to use the conda command after installing miniconda, is there any way to install locally without the conda command?
The text was updated successfully, but these errors were encountered: