How to Install pyShelf on Windows 11
pyShelf is a command-line tool that allows you to interact with different file storage providers such as Amazon S3, Google Cloud Storage, and more. Here's how to install pyShelf on Windows 11.
Prerequisites
- Python 3.7 or higher installed on your Windows 11 computer.
- pip package management tool installed.
Installation Steps
Clone the pyShelf repository from GitHub onto your Windows 11 machine. You can do this from the command line with the
gitcommand:git clone https://github.com/th3r00t/pyShelf.gitOpen the command prompt and navigate to the cloned
pyShelfdirectory.cd pyShelfInstall the required dependencies using
pip.pip install -r requirements.txtNext, install pyShelf by running the following command.
pip install .Note that the period at the end of the command is important, as it tells
pipto install from the current directory.Once the installation is complete, you can verify pyShelf is installed correctly by checking the CLI version.
pyshelf --versionThis should return the version number of the installed pyShelf package.
Conclusion
That's it! You have successfully installed pyShelf on your Windows 11 computer using pip. You can now start using pyShelf to work with multiple file storage providers from the command line.