Skip to content

Commit 5416f80

Browse files
langaaegeskovoz123
authored andcommitted
Attempt to fix build issues
1 parent 327ea3b commit 5416f80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,6 @@ that ensures all commands have access to your installed packages with `$ pipenv
161161
- Pipenv automatically maps projects to their specific virtualenvs.
162162
- By default, the virtualenv is stored globally with the name of the project’s root directory plus the hash of the full path to the project's root (e.g., `my_project-a3de50`).
163163
- Should you change your project's path, you break such a default mapping and pipenv will no longer be able to find and to use the project's virtualenv.
164-
- If you must move or rename a directory managed by pipenv, run 'pipenv --rm' before renaming or moving your project directory. Then, after renaming or moving the directory run 'pipenv install' to recreate the virtualenv.
164+
- If you must move or rename a directory managed by pipenv, run 'pipenv --rm' before renaming or moving your project directory. Then, after renaming or moving the directory run 'pipenv install' to recreate the virtualenv.
165165
- Customize this behavior with `PIPENV_CUSTOM_VENV_NAME` environment variable.
166166
- You might also prefer to set `PIPENV_VENV_IN_PROJECT=1` in your .env or .bashrc/.zshrc (or other shell configuration file) for creating the virtualenv inside your project's directory.

docs/virtualenv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ The logical place to specify this would be in a user's `.env` file in the root o
2626
By default pipenv creates a virtualenv for your project and gives it a name. The default name is how pipenv maps the individual project to the correct virtualenv. Pipenv names the virtualenv with the name of the project’s root directory plus the hash of the full path to the project's root (e.g., `my_project-a3de50`).
2727

2828
If you rename or move the project folder this will change the project path. Then, pipenv will no longer be able to find your virtualenv and it will make a new virtualenv. This leaves you with the old virtualenv still lying around on you system. Luckily the fix is simple.
29-
- Run 'pipenv --rm' *before* renaming or moving your project directory
30-
- Then, after renaming or moving the directory run 'pipenv install' to recreate the virtualenv
29+
- Run 'pipenv --rm' *before* renaming or moving your project directory
30+
- Then, after renaming or moving the directory run 'pipenv install' to recreate the virtualenv

0 commit comments

Comments
 (0)