lionheart
lionheart

Reputation: 333

Installing cusignal on windows 10

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.

Upvotes: 1

Views: 1053

Answers (2)

Asif
Asif

Reputation: 11

The following worked just fine for me:

 conda install -c rapidsai -c nvidia -c conda-forge cusignal

Upvotes: 0

merv
merv

Reputation: 76950

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.

Upvotes: 1

Related Questions