We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some packages are not displayed import through import keyword , so they will be missed when generating requirements.txt. How to solve it?
import
requirements.txt
eg:
soup = BeautifulSoup(html, 'lxml')
run with command pigar but lxml package not found.
pigar
lxml
The text was updated successfully, but these errors were encountered:
That is another magic that pigar can not handle, which should be added to FAQ https://github.com/damnever/pigar#faq
Sorry, something went wrong.
Thanks.
pip install pigar==2.1.0 has introduced an experimental feature:
pip install pigar==2.1.0
soup = BeautifulSoup(html, 'lxml') # pigar: required-packages=lxml
No branches or pull requests
Some packages are not displayed import through
import
keyword , so they will be missed when generatingrequirements.txt
. How to solve it?eg:
run with command
pigar
butlxml
package not found.The text was updated successfully, but these errors were encountered: