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 should be pip3 install nda-tools #62

Closed RyanZurrin closed 10 months ago

RyanZurrin commented 1 year ago

the command on the readme to install the nda-tools is pip install when it should be pip3 install. This will cause conflicts when trying to vtcmd and other commands.

jacob-lee commented 1 year ago

This isn't really a problem if the user knows which pip is being called on the path. Same thing, tbh, for calling python instead of python3.

If you know which python interpreter you are using, e.g. you've installed a python environment, then probably the safest thing to do is:

python -m pip install nda-tools

as per documentation!