We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
after this commit: 80d4647daf5daac4d8d6733fdddf2eae9cd9ec7a
root@45bcb33be86c:/opt/pyg/pytorch_geometric# python3 setup.py install python3: canβt open file βsetup.pyβ: [Errno 2] No such file or directory root@45bcb33be86c:/opt/pyg/pytorch_geometric# pip install -e . Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com Obtaining file:///opt/pyg/pytorch_geometric Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Requirement already satisfied: scipy in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (1.6.3) Requirement already satisfied: tqdm in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (4.62.3) Requirement already satisfied: requests in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (2.28.2) Requirement already satisfied: psutil>=5.8.0 in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (5.8.0) Requirement already satisfied: pyparsing in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (3.0.9) Requirement already satisfied: jinja2 in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (3.1.2) Requirement already satisfied: numpy in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (1.22.3) Requirement already satisfied: scikit-learn in /usr/local/lib/python3.8/dist-packages (from torch_geometric==2.4.0) (0.24.2) Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.8/dist-packages (from jinja2->torch_geometric==2.4.0) (2.1.2) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.8/dist-packages (from requests->torch_geometric==2.4.0) (3.4) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.8/dist-packages (from requests->torch_geometric==2.4.0) (3.1.0) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.8/dist-packages (from requests->torch_geometric==2.4.0) (2022.12.7) Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.8/dist-packages (from requests->torch_geometric==2.4.0) (1.26.14) Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.8/dist-packages (from scikit-learn->torch_geometric==2.4.0) (1.2.0) Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.8/dist-packages (from scikit-learn->torch_geometric==2.4.0) (3.1.0) Installing collected packages: torch-geometric Running setup.py develop for torch-geometric ERROR: Command errored out with exit status 1: command: /usr/bin/python -c βimport io, os, sys, setuptools, tokenize; sys.argv[0] = βββββ/opt/pyg/pytorch_geometric/setup.pyβββββ; __file__=βββββ/opt/pyg/pytorch_geometric/setup.pyβββββ;f = getattr(tokenize, βββββopenβββββ, open)(__file__) if os.path.exists(__file__) else io.StringIO(βββββfrom setuptools import setup; setup()βββββ);code = f.read().replace(βββββ\r\nβββββ, βββββ\nβββββ);f.close();exec(compile(code, __file__, βββββexecβββββ))' develop --no-deps cwd: /opt/pyg/pytorch_geometric/ Complete output (14 lines): error: Multiple top-level packages discovered in a flat-layout: [βcondaβ, βdockerβ, βgraphgymβ, βtorch_geometricβ]. To avoid accidental inclusion of unwanted files or directories, setuptools will not proceed with this build. If you are trying to create a single distribution with multiple packages on purpose, you should not rely on automatic discovery. Instead, consider the following options: 1. set up custom discovery (`find` directive with `include` or `exclude`) 2. use a `src-layout` 3. explicitly set `py_modules` or `packages` with a list of names To find more information, look for βpackage discoveryβ on setuptools docs. ---------------------------------------- ERROR: Command errored out with exit status 1: /usr/bin/python -c βimport io, os, sys, setuptools, tokenize; sys.argv[0] = βββββ/opt/pyg/pytorch_geometric/setup.pyβββββ; __file__=βββββ/opt/pyg/pytorch_geometric/setup.pyβββββ;f = getattr(tokenize, βββββopenβββββ, open)(__file__) if os.path.exists(__file__) else io.StringIO(βββββfrom setuptools import setup; setup()βββββ);code = f.read().replace(βββββ\r\nβββββ, βββββ\nβββββ);f.close();exec(compile(code, __file__, βββββexecβββββ))' develop --no-deps Check the logs for full command output.
The text was updated successfully, but these errors were encountered:
We no longer support the deprecated installation command python setup.py install. You have to use pip install . instead.
python setup.py install
pip install .
Sorry, something went wrong.
rusty1s
No branches or pull requests
π Describe the bug
after this commit: 80d4647daf5daac4d8d6733fdddf2eae9cd9ec7a
Environment
The text was updated successfully, but these errors were encountered: