Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
206cd098
Commit
206cd098
authored
Mar 05, 2021
by
Kate Grechishkina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change __token__ to token_username in pypi docs
parent
6c9c3b7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
doc/user/packages/pypi_repository/index.md
doc/user/packages/pypi_repository/index.md
+6
-6
No files found.
doc/user/packages/pypi_repository/index.md
View file @
206cd098
...
...
@@ -174,11 +174,10 @@ index-servers =
[gitlab]
repository
=
https://gitlab.example.com/api/v4/projects/<project_id>/packages/pypi
username
=
__token__
password
=
<your
personal access
token>
username
=
<your_personal_access_token_name>
password
=
<your
_personal_access_
token>
```
-
`username`
must be
`__token__`
exactly.
-
Your project ID is on your project's home page.
### Authenticate with a deploy token
...
...
@@ -317,10 +316,11 @@ more than once, a `404 Bad Request` error occurs.
To install the latest version of a package, use the following command:
```
shell
pip
install
--index-url
https://
__token__
:<personal_access_token>@gitlab.example.com/api/v4/projects/<project_id>/packages/pypi/simple
--no-deps
<package_name>
pip
install
--index-url
https://
<personal_access_token_name>
:<personal_access_token>@gitlab.example.com/api/v4/projects/<project_id>/packages/pypi/simple
--no-deps
<package_name>
```
-
`<package_name>`
is the package name.
-
`<personal_access_token_name>`
is a personal access token name with the
`read_api`
scope.
-
`<personal_access_token>`
is a personal access token with the
`read_api`
scope.
-
`<project_id>`
is the project ID.
...
...
@@ -334,13 +334,13 @@ If you were following the guide and want to install the
`MyPyPiPackage`
package, you can run:
```
shell
pip
install
mypypipackage
--no-deps
--index-url
https://
__token__
:<personal_access_token>@gitlab.example.com/api/v4/projects/<your_project_id>/packages/pypi/simple
pip
install
mypypipackage
--no-deps
--index-url
https://
<personal_access_token_name>
:<personal_access_token>@gitlab.example.com/api/v4/projects/<your_project_id>/packages/pypi/simple
```
This message indicates that the package was installed successfully:
```
plaintext
Looking in indexes: https://
__token__
:****@gitlab.example.com/api/v4/projects/<your_project_id>/packages/pypi/simple
Looking in indexes: https://
<personal_access_token_name>
:****@gitlab.example.com/api/v4/projects/<your_project_id>/packages/pypi/simple
Collecting mypypipackage
Downloading https://gitlab.example.com/api/v4/projects/<your_project_id>/packages/pypi/files/d53334205552a355fee8ca35a164512ef7334f33d309e60240d57073ee4386e6/mypypipackage-0.0.1-py3-none-any.whl (1.6 kB)
Installing collected packages: mypypipackage
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment