So "pip install -e ." is the rebuild operation?
See original GitHub issue❓ So “pip install -e .” is the rebuild operation?
I see the Note in the Installation that said “you often need to rebuild detectron2 after reinstalling PyTorch.”, but there are multiple commands in that section, as
cd detectron2
pip install -e .
# or if you are on macOS
# MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ pip install -e .
# or, as an alternative to `pip install`, use
# python setup.py build develop
So my question is whether the “pip install -e .” is the rebuild operation other than any others?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6
Top Results From Across the Web
When would the -e, --editable option be useful with pip install?
As the man page says it: -e,--editable <path/url> Install a project in editable mode (i.e. setuptools "develop mode") from a local project ...
Read more >Installing Packages - Python Packaging User Guide - Python.org
This section covers the basics of how to install Python packages. ... an introduction to using your operating system's shell and interacting with...
Read more >How to install, download and build Python wheels - ActiveState
Operating system-level dependencies for Windows, Linux, and macOS; Shared dependencies (ie., OpenSSL); Find, fix and automatically rebuild a ...
Read more >Installation — Cryptography 39.0.0.dev1 documentation
You can install cryptography with pip : $ pip install cryptography ... Currently we test cryptography on Python 3.6+ and PyPy3 on these...
Read more >Development Mode (a.k.a. “Editable Installs”) - Setuptools
An “editable installation” works very similarly to a regular install with pip install . , except that it only installs your package dependencies,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes.
You’re right.