What does pip install mean?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I am installing this https://github.com/wkentaro/pytorch-fcn. It tells me to do this instruction.
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
What does pip install .
mean ? Which folder or file am i running by just typing dot ? setup.py
?
pip
add a comment |Â
up vote
1
down vote
favorite
I am installing this https://github.com/wkentaro/pytorch-fcn. It tells me to do this instruction.
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
What does pip install .
mean ? Which folder or file am i running by just typing dot ? setup.py
?
pip
3
As a more general answer,.
in both Unix and Windows means "the current directory".
â chrylis
Aug 21 at 7:32
pip
displays a page of help text, which tells you thatpip install --help
will give you help text specific topip install
.
â Roger Lipscombe
Aug 21 at 9:15
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am installing this https://github.com/wkentaro/pytorch-fcn. It tells me to do this instruction.
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
What does pip install .
mean ? Which folder or file am i running by just typing dot ? setup.py
?
pip
I am installing this https://github.com/wkentaro/pytorch-fcn. It tells me to do this instruction.
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
What does pip install .
mean ? Which folder or file am i running by just typing dot ? setup.py
?
pip
pip
asked Aug 21 at 5:05
kong
2381416
2381416
3
As a more general answer,.
in both Unix and Windows means "the current directory".
â chrylis
Aug 21 at 7:32
pip
displays a page of help text, which tells you thatpip install --help
will give you help text specific topip install
.
â Roger Lipscombe
Aug 21 at 9:15
add a comment |Â
3
As a more general answer,.
in both Unix and Windows means "the current directory".
â chrylis
Aug 21 at 7:32
pip
displays a page of help text, which tells you thatpip install --help
will give you help text specific topip install
.
â Roger Lipscombe
Aug 21 at 9:15
3
3
As a more general answer,
.
in both Unix and Windows means "the current directory".â chrylis
Aug 21 at 7:32
As a more general answer,
.
in both Unix and Windows means "the current directory".â chrylis
Aug 21 at 7:32
pip
displays a page of help text, which tells you that pip install --help
will give you help text specific to pip install
.â Roger Lipscombe
Aug 21 at 9:15
pip
displays a page of help text, which tells you that pip install --help
will give you help text specific to pip install
.â Roger Lipscombe
Aug 21 at 9:15
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
Basically you are specifying the location from which the pip
package manager to extract the package information from.
E.g.:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
Here is a brief description:pip
executes the setup.py
which loads the requirements.txt
which has textual representation of the dependency packages.
References:
- Available here is the official documentation of
pip
. - For better python development workflow refer here for why you should use
pip
andvirtualenv
.
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Basically you are specifying the location from which the pip
package manager to extract the package information from.
E.g.:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
Here is a brief description:pip
executes the setup.py
which loads the requirements.txt
which has textual representation of the dependency packages.
References:
- Available here is the official documentation of
pip
. - For better python development workflow refer here for why you should use
pip
andvirtualenv
.
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
add a comment |Â
up vote
4
down vote
accepted
Basically you are specifying the location from which the pip
package manager to extract the package information from.
E.g.:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
Here is a brief description:pip
executes the setup.py
which loads the requirements.txt
which has textual representation of the dependency packages.
References:
- Available here is the official documentation of
pip
. - For better python development workflow refer here for why you should use
pip
andvirtualenv
.
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Basically you are specifying the location from which the pip
package manager to extract the package information from.
E.g.:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
Here is a brief description:pip
executes the setup.py
which loads the requirements.txt
which has textual representation of the dependency packages.
References:
- Available here is the official documentation of
pip
. - For better python development workflow refer here for why you should use
pip
andvirtualenv
.
Basically you are specifying the location from which the pip
package manager to extract the package information from.
E.g.:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
Here is a brief description:pip
executes the setup.py
which loads the requirements.txt
which has textual representation of the dependency packages.
References:
- Available here is the official documentation of
pip
. - For better python development workflow refer here for why you should use
pip
andvirtualenv
.
edited Aug 21 at 5:33
answered Aug 21 at 5:12
AmeyaVS
341111
341111
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
add a comment |Â
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
Hello thanks for the reply. I have only used pip to do installations and have no idea how it works. What do you mean by package definitions ? Is there a specific file in pytorch-fcn that pip executes ?
â kong
Aug 21 at 5:20
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
@kong updated the answer.
â AmeyaVS
Aug 21 at 5:35
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1067372%2fwhat-does-pip-install-dot-mean%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
3
As a more general answer,
.
in both Unix and Windows means "the current directory".â chrylis
Aug 21 at 7:32
pip
displays a page of help text, which tells you thatpip install --help
will give you help text specific topip install
.â Roger Lipscombe
Aug 21 at 9:15