Hi Everybody, I am trying to install HTSeq on windows 10 64bit machine. I have tried using python command "pip install HTSeq", to get the following error:
C:\Python27\Scripts>pip install htseq
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
Collecting htseq
Using cached https://files.pythonhosted.org/packages/b1/55/3612dc17fe2a85c9f0a4b98b97aa8a9850d0930e2ad89deaf9c5e1271e97/HTSeq-0.11.2.tar.gz
Complete output from command python setup.py egg_info:
symlinking folders for python2
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:\users\kuldeep\appdata\local\temp\pip-install-sfwygs\htseq\setup.py", line 20, in <module>
os.symlink(py_fdn+fdn, fdn)
AttributeError: 'module' object has no attribute 'symlink'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\kuldeep\appdata\local\temp\pip-install-sfwygs\htseq\
Alternatively, I tried downloading it on Anaconda3 using the command ," install -c bioconda htseq". It always says that the package is not found in the current channels.
Have you tried
conda install -c bioconda/label/cf201901 htseq
?Ref