![]() |
Key Error: os.environ["HOME"] - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Key Error: os.environ["HOME"] (/thread-34002.html) Pages:
1
2
|
Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 I run the python script in python3.8 and this return an key error Line No: 20 codemodelFile = os.environ["HOME"] + "\\models\\" + "Articles_word2vec.txt" test_clustering.py:None (test_clustering.py)
RE: Key Error: os.environ["HOME"] - Axel_Erfurt - Jun-17-2021 Windows doesn't have HOME try os.path.expanduser('~')or you can use print(os.environ) to show all environment variables RE: Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 @Axel_Erfurt in both case return same error modelFile = os.environ['HOME'] + "\\models\\" + "glove.6B.300d_word2vec.txt" print(os.environ)also this case return me another error empty modelFile = os.path.expanduser('~') + "\\models\\" + "glove.6B.300d_word2vec.txt" print(os.environ)error
RE: Key Error: os.environ["HOME"] - Axel_Erfurt - Jun-17-2021 does this work? os.environ['USERPROFILE'] RE: Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 @Axel_Erfurt same is i update the post sparse\sparsetools.py:21 error RE: Key Error: os.environ["HOME"] - Axel_Erfurt - Jun-17-2021 What is the output of print(os.environ) RE: Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 @Axel_Erfurt same output as above RE: Key Error: os.environ["HOME"] - Axel_Erfurt - Jun-17-2021 You should get an output import os print(os.environ)This is what I get on Windows, USERPROFILE is correct
RE: Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 @Axel_Erfurt for my codes this error ============================= warnings summary =============================== ..\..\Python3.8.0\Python\lib\site-packages\scipy\sparse\sparsetools.py:21 D:\Python3.8.0\Python\lib\site-packages\scipy\sparse\sparsetools.py:21: DeprecationWarning: scipy.sparse.sparsetools is deprecated!scipy.sparse.sparsetools is a private module for scipy.sparse, and should not be used. _deprecated() -- Docs: https://docs.pytest.org/en/stable/warnings.html ============================= 1 warning in 2.02s ============================== Process finished with exit code 5 Empty suite RE: Key Error: os.environ["HOME"] - Anldra12 - Jun-17-2021 it shows on the line 21 likes this sparsetool.py an extra module that randomly generated during run codes
|