Closed Dev-JoyA closed 3 weeks ago
pipenv install --dev
) is step 3 of Installing Project Requirements@TimidRobot the command to create a virtual environment is this
pipenv --python 3.12
Also there is need to know the version of python the user uses by running
python --version
This two command is not included in the documentation and its a necessary step for installation
This command is for installing requirement for the project
pipenv install --dev
and without this
pipenv --python 3.12
it wont work
@Dev-JoyA thank you for the additional information.
The Python version (3.11) is defined in the Pipefile
.
If there's no Python 3.11 on your system (or if pipenv
can't find it), you may need to specify the Python location. For example:
pipenv install --dev --python /opt/homebrew/bin/python3.11
Adding a sub-bullet to the README might be helpful. Please update this issue description.
Description
The documentation states that a Python environment must be created, but it lacks specific commands to guide users through this process. This absence of information can impede the development workflow, as users may struggle to set up their environment correctly.
Additionally, if Python 3.11 is not installed on a user's system (or if pipenv is unable to locate it), they might need to specify the Python path. However, the documentation does not currently address the necessary steps or alternatives if Python 3.11 is present instead.
Reproduction
Expectation
I expected the documentation to provide clear and detailed commands for creating a Python environment, ensuring users could easily set it up. This clarity would help prevent confusion and ensure a smooth development process, allowing all team members to quickly get started with the project without facing setup issues.
Resolution