-
Notifications
You must be signed in to change notification settings - Fork 55
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
Add catkin_pkg to requirements in setup.py #29
Comments
Hi, I typically first installed the requirements from |
Hi, thanks for your reply. I'm currently installing the requirements before running |
That makes sense. If you do not install the package with catkin anyways, a solution to your problem could be to simply remove the catkin_pkg dependency and add the remaining dependencies to setup.py. |
Yes, but in that case the problem is again the installation of |
That should work. Can you try replacing the existing setup.py with the following code? from setuptools import setup
setup(
name="vgn",
version="0.1.0",
author="Michel Breyer",
author_email="[email protected]",
description="Volumetric Grasping Network.",
packages=[
"vgn",
"vgn.utils",
],
package_dir={"": "src"},
install_requires=[
"numpy",
"scipy",
"pandas",
"matplotlib",
"mpi4py",
"open3d",
"pybullet==2.7.9",
"torch",
"pytorch-ignite",
"tensorboard",
"tqdm",
],
) |
Yes, this |
Hi, I would like to install VGN from the setup.py in my project. Would it be possible to add the installation of
catkin_pkg
as a requirement in the VGN's setup.py? Thanks in advance!The text was updated successfully, but these errors were encountered: