Basic new user issues #86
-
First let me admit I am somewhat of a python n00b, but I've done my share of programming and using other python modules obtained via pip, and I feel like I'm missing something here. I'm using python 3.7.9 on Windows 10. I believe I'm using a venv, as recommended by people I work with who know more about python than me. I performed a If I launch a console by just running So in trying the instructions in the README.md here, and various things similar to them, I haven't found syntax that works in my environment. Does anyone have any suggestions on next steps? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello, does performing the install using `python -m pip install html2image`
solves the problem?
Le mar. 15 nov. 2022 à 21:39, jrb-github ***@***.***> a
écrit :
… First let me admit I am somewhat of a python n00b, but I've done my share
of programming and using other python modules obtained via pip, and I feel
like I'm missing something here.
I'm using python 3.7.9 on Windows 10. I believe I'm using a venv, as
recommended by people I work with who know more about python than me.
I performed a pip install html2image with no issues.
If I launch a console by just running python from a command prompt,
typing import html2image yields no output, suggesting that it worked.
However, all examples I've seen suggest performing from html2image import
Html2image. This yields the following output for me:
[image: image]
<https://user-images.githubusercontent.com/49240289/202020111-6f137c49-d01a-442c-bd5d-1bf6674d2fe9.png>
So in trying the instructions in the README.md here, and various things
similar to them, I haven't found syntax that works in my environment. Does
anyone have any suggestions on next steps?
—
Reply to this email directly, view it on GitHub
<#86>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALNKZXIBO5P65CYJSGBE6TLWIPYGNANCNFSM6AAAAAASBKY37M>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
@jrb-github my bad, the package is properly installed. I'm pretty sure I've spotted the issue, the "i" of
Html2image
needs to be capitalized (Html2_I_mage
instead ofHtml2_i_mage
), like so: