Installing cusignal on windows 10

Question:

I wanted to install the cusignal python package on windows and I was following the instructions on the following github link.

It says to run the following commands:

conda create --name cusignal-dev

conda activate cusignal-dev

conda install numpy numba scipy cudatoolkit pip
pip install cupy-cuda101

cd python
python setup.py install

But towards the last two lines, I have no idea what and where the setup.py file is located. There is also no such folder called python that is automatically created. Hence, I am unsure how I am supposed to install cusignal library on windows 10.

Asked By: lionheart

||

Answers:

The instructions expect that you first clone the GitHub repository, which has such a python folder, then run those instructions, like

git clone https://github.com/rapidsai/cusignal.git
cd python
python setup.py install

Be sure your environment is activated when doing this.

Answered By: merv

The following worked just fine for me:

 conda install -c rapidsai -c nvidia -c conda-forge cusignal
Answered By: Asif
Categories: questions Tags: , , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.