I am a beginner in Linux and I am trying to do something very basic (yet it does not seem to work).
I have installed a python3 package. I wish to run this Python package on a specific folder from my linux machine. The idea is that this package should restructure all my files in a specific format (this is the link to the package https://github.com/SIMEXP/Data2Bids ).
In the demo of the tutorial, it is mentioned that once I install the package:
pip3 install data2bids
I should just use cd
on my desired folder that needs restructuring and then simply run data2bids
.
After doing so, I received a command not found
error.
I have tried to run the package using the python data2bids
command (thinking that maybe I should mention it is a python package. I have tried to use the full path of where the package was installed in the command, yet it did not work. I even tried to install the package in the same folder as my directory that needs restructuring, with no results.
I believe that this is a very basic problem, and the solution may be very simple. Within a linux machine, how does one exactly run a python module in a specific folder?