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

  1. Clone the pyShelf repository from GitHub onto your Windows 11 machine. You can do this from the command line with the git command:

    git clone https://github.com/th3r00t/pyShelf.git
    
  2. Open the command prompt and navigate to the cloned pyShelf directory.

    cd pyShelf
    
  3. Install the required dependencies using pip.

    pip install -r requirements.txt
    
  4. Next, install pyShelf by running the following command.

    pip install .
    

    Note that the period at the end of the command is important, as it tells pip to install from the current directory.

  5. Once the installation is complete, you can verify pyShelf is installed correctly by checking the CLI version.

    pyshelf --version
    

    This 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.