Solution: Simple Steps to Install 'Atri' in Windows Machine. #749
Unanswered
chiragmathur03
asked this question in
Help: Installation & Start
Replies: 2 comments 2 replies
-
This is a great writeup, thanks Chirag! In the upcoming version, we are making Python virtual environments optional to avoid these issues. |
Beta Was this translation helpful? Give feedback.
1 reply
-
@chiragmathur03 are you in our Slack community? If not, it would be our pleasure to have you in our Slack community. Please join using the link https://join.slack.com/t/atricommunity/shared_invite/zt-1otyguhy8-P4OQQRWFWcMUsKk7yp0FHQ |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have noticed that many people encounter issues with the 'pipenv install atri' command. Prior to installing the pipenv tool, it is necessary to have Python and pip already installed on the computer.
Below are the simple steps that help to proceed. For smooth installation, you can delete the existing version of Python in your PC
Reference: https://www.wikihow.com/Uninstall-Python
Before proceeding with installation, select Add python.exe to PATH
Command:- pip -V.
You will get:- pip 21.2.3 from C:\Program Files\Python310\lib\site- packages\pip (python 3.10)
Install pipenv on Windows.
Run pip install pipenv command in Windows Powershell
Then, Go to This PC -> Properties -> Advanced System Settings -> Advanced tab
Click on Environment Variable
Double Click on Path in User variables [above section]
Click on New and add the following:
C:\Users\your username\AppData\Roaming\Python\Python310\Scripts
C:\Users\your username\AppData\Roaming\Python\Python310\site-packages
*Don't forget to replace - your username
Click OK and restart your PC
Check if the pipenv is installed correctly:
Command:- pipenv -h
If it shows the following:
Usage: pipenv [OPTIONS] COMMAND [ARGS]..
Then, you’ve successfully installed the pipenv tool. Congrats!
Now, you can follow the commands mentioned in the documentation for further installation: https://docs.atrilabs.com/getting-started/installation/install_with_pipenv
Please feel free to ask if you face any issues during the installation.
Beta Was this translation helpful? Give feedback.
All reactions