You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am getting same error!! i am unable to unintsall enum and install enum34..
pip uninstall enum
pip install enum34
By using these commands i am unable fix bug.can i can any solution or reason for this issue?
@tannupiyush Were you able to figure out a solution? Running into the same issue - cannot uninstall enum because running pip uninstall enum gives me the same TypeError.
@tongpinmo , I had the same issue, was able to solve it by manually removing enum and crapytography. Here are the steps that I did -
Removed enum from "/usr/lib/python2.7/dist-packages": rm -rf enum*
When I tried to install enum34 using "pip install enum34" I still run into the same error from cryptography: "TypeError: 'type' object is not iterable". (I think its because there is a copy of enum present under "/usr/local/lib/python2.7/dist-packages" as well.
Next I removed cryptography from "/usr/lib/python2.7/dist-packages": rm -rf cryptography*
Now try running "pip uninstall enum", it works.
Then install enum34: pip install enum34
Then install cryptography again: pip install cryptography
nardopessoa, aamirhatim, stigrlm, yunpeng-zhang, mihaigalos and 12 morezainmehdijuniorUsca, datasith, ecstayalive, gwaim, ZhengyuanZhao and 4 more
Activity
relunctance commentedon Nov 15, 2017
pip uninstall enum
pip install enum34
can fixed this bug
reaperhulk commentedon Nov 15, 2017
We list
enum34
in our requirements already. It might make sense to add this to the FAQ though.alex commentedon Nov 20, 2017
Dupe of #4010
cryptography and vcenter shell are running from the same environment …
cryptography and vcenter shell are running from the same environment …
tannupiyush commentedon Nov 23, 2018
i am getting same error!! i am unable to unintsall enum and install enum34..
pip uninstall enum
pip install enum34
By using these commands i am unable fix bug.can i can any solution or reason for this issue?
harshini4 commentedon Jan 9, 2019
@tannupiyush Were you able to figure out a solution? Running into the same issue - cannot uninstall enum because running
pip uninstall enum
gives me the same TypeError.tongpinmo commentedon Jan 18, 2019
@harshini4 @tannupiyush have you ever solved the problem ,running pip uninstall enum gives me the same TypeError.
spica45 commentedon Jan 30, 2019
@tongpinmo , I had the same issue, was able to solve it by manually removing enum and crapytography. Here are the steps that I did -
tongpinmo commentedon Jan 31, 2019
@nithinn86 ok,thank you very much
autodataming commentedon Apr 23, 2019
pipenv install enum34