Information
- Qiskit Terra version:
- Python version:
- Operating system:
What is the current behavior?
Installation is via python3 -m pip install .
This leads to an uneditable install, and causes cython based modules to not work
Steps to reproduce the problem
Install with python3 -m pip install .
Run the example code
What is the expected behavior?
Cython based packages work
Suggested solutions
Replace installation command with python3 -m pip install -e .
This solves the issue
Information
What is the current behavior?
Installation is via python3 -m pip install .
This leads to an uneditable install, and causes cython based modules to not work
Steps to reproduce the problem
Install with python3 -m pip install .
Run the example code
What is the expected behavior?
Cython based packages work
Suggested solutions
Replace installation command with python3 -m pip install -e .
This solves the issue