Advertisement
hirogami

Pyenv_Pipenv

Oct 15th, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ---
  2. title: "Pyenv_Pipenv"
  3. author: "misho"
  4. date: "2023-10-15"
  5. output: html_document
  6. ---
  7.  
  8. ## Install Python using pyenv
  9.  
  10. 1. List installed versions
  11.  
  12. pyenv versions
  13.  
  14. 2. List available versions
  15.  
  16. pyenv install -l
  17.  
  18. 3. Install
  19.  
  20. pyenv install python 3.11
  21.  
  22. ## Creat a virtual environment using pipenv
  23.  
  24. 1. Create a vertual environment
  25.  
  26. pipenv --python 3.11
  27.  
  28. 2. Activate the cirtual environment
  29.  
  30. pipenv shell
  31.  
  32. 4. Install a library
  33.  
  34. pienv install pandas
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement