xxxxxxxxxx
# Create a requirements.txt file with packages installed in your environment
pip freeze > requirements.txt
xxxxxxxxxx
# To generate your requrements file do:
pip freeze > requirements.py
# To install the requrements do:
pip install -r requirements.py
# If you want to make sure pip is using python3, you can do this:
python3 -m pip freeze > requirements.py
python3 -m pip install -r requirements.py
# Or:
pip3 freeze > requirements.py
pip3 install -r requirements.py
xxxxxxxxxx
# install
pip3 install pipreqs
# Run in current directory
python3 -m pipreqs.pipreqs .
xxxxxxxxxx
# install
pip3 install pipreqs
# Run in current directory
python3 -m pipreqs.pipreqs .
xxxxxxxxxx
# install
pip install --upgrade pipreqs
# run
python -m pipreqs.pipreqs . --force
xxxxxxxxxx
<table class="table">
<caption>List of users</caption>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>