zju3dv / EasyVolcap

[SIGGRAPH Asia 2023 (Technical Communications)] EasyVolcap: Accelerating Neural Volumetric Video Research
Other
577 stars 41 forks source link

pip install -e . Doesnt seem to install evc or find the name easyvolcap #7

Closed pablovela5620 closed 6 months ago

pablovela5620 commented 6 months ago

Here is the error I'm getting after running the install instructions. It doesn't seem like its finding the project or the project scripts

pablo@pablo-ubuntu:~/0Dev/repos/EasyVolcap$ pip install -e . --no-build-isolation --no-deps
Defaulting to user installation because normal site-packages is not writeable
Obtaining file:///home/pablo/0Dev/repos/EasyVolcap
  Checking if build backend supports build_editable ... done
  Preparing metadata (pyproject.toml) ... done
Installing collected packages: UNKNOWN
  Attempting uninstall: UNKNOWN
    Found existing installation: UNKNOWN 0.0.0
    Uninstalling UNKNOWN-0.0.0:
      Successfully uninstalled UNKNOWN-0.0.0
  Running setup.py develop for UNKNOWN
Successfully installed UNKNOWN-0.0.0
pablo@pablo-ubuntu:~/0Dev/repos/EasyVolcap$ evc gui
Command 'evc' not found, did you mean:
  command 'dvc' from snap dvc (3.36.1)
  command 'svc' from deb daemontools (1:0.76-7)
  command 'tvc' from deb tvc (5.0.3+git20151221.80e144e+dfsg-4build1)
  command 'rvc' from deb vtgrab (0.1.8-3.2)
See 'snap info <snapname>' for additional versions.
pablo@pablo-ubuntu:~/0Dev/repos/EasyVolcap$ pip install -e . --no-build-isolation --no-deps
Defaulting to user installation because normal site-packages is not writeable
Obtaining file:///home/pablo/0Dev/repos/EasyVolcap
  Checking if build backend supports build_editable ... done
  Preparing metadata (pyproject.toml) ... done
Installing collected packages: UNKNOWN
  Attempting uninstall: UNKNOWN
    Found existing installation: UNKNOWN 0.0.0
    Uninstalling UNKNOWN-0.0.0:
      Successfully uninstalled UNKNOWN-0.0.0
  Running setup.py develop for UNKNOWN
Successfully installed UNKNOWN-0.0.0
dendenxu commented 6 months ago

Hi @pablovela5620 , looks like your pip and setuptools packages' version is too low. Could you please try updating with python -m pip install -U pip setuptools and rerun the install command?

pablovela5620 commented 6 months ago

Looks like that fixed things! I'm not sure if its because mamba env update failed or if the version of pip/setuptools needs to be set in the conda enviroment. Thank you