File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed
Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ adjust the code and the installed software will reflect the changes.
5959
6060 $ tmuxp
6161
62- Using pipenv
62+ Using poetry
6363^^^^^^^^^^^^
6464
6565To begin developing, check out the code from github:
@@ -70,33 +70,26 @@ To begin developing, check out the code from github:
7070 $ cd tmuxp
7171
7272 You can create a virtualenv, and install all of the locked
73- packages as listed in Pipfile .lock:
73+ packages as listed in poetry .lock:
7474
7575.. code-block :: bash
7676
77- $ pipenv install --ignore-pipfile --dev
78-
79- If you prefer to install updated packages based on Pipfile only, not being
80- bound by Pipfile.lock:
81-
82- .. code-block :: bash
83-
84- $ pipenv install --skip-lock --dev
77+ $ poetry install
8578
8679 If you ever need to update packages during your development session, the
87- following command can be used to update all packages as per Pipfile settings or
80+ following command can be used to update all packages as per poetry settings or
8881individual package (second command):
8982
9083.. code-block :: bash
9184
92- $ pipenv update --dev
93- $ pipenv update requests
85+ $ poetry update
86+ $ poetry update requests
9487
9588 Then activate it to your current tty / terminal session with:
9689
9790.. code-block :: bash
9891
99- $ pipenv shell
92+ $ poetry shell
10093
10194 That is it! You are now ready to code!
10295
You can’t perform that action at this time.
0 commit comments