NDAR / nda-tools

Python package for interacting with NDA web services. Used to validate, submit, and download data to and from NDA.
MIT License
48 stars 22 forks source link

Command 'vtcmd' not found #63

Closed gbook closed 10 months ago

gbook commented 1 year ago

I'm working on Ubuntu 18.04 (wsl on Windows)

I install NDA tools using the following command pip3 install nda-tools

It installs successfully, but I can't run the vtcmd command. What am I missing?

gregmagdits commented 1 year ago

What is the error message that you are seeing ?

AhaTree commented 1 year ago

I have the same issue, I tried to run vtcmd -h , it raises "Command 'vtcmd' not found". I run downloadcmd -h , it raises Command 'downloadcmd' not found,

gregmagdits commented 1 year ago

try running: python -m NDATools.clientscripts.vtcmd -h python -m NDATools.clientscripts.downloadmd -h

jacob-lee commented 1 year ago

To eliminate the possibility that a different pip is being used to install nda tools, I recommend doing the install this way:

python -m pip install nda-tools

per recommendation in the docs:

https://docs.python.org/3/installing/index.html

When you just use the command pip it just looks for it on your path specified in your os/terminal, which may or may not be the same as your python.

AhaTree commented 1 year ago

try running: python -m NDATools.clientscripts.vtcmd -h python -m NDATools.clientscripts.downloadmd -h

It worked! Thanks!