Skip to content

Commit 3a242b1

Browse files
authored
Create UsingTestPyPI.md (#1061)
1 parent e1c8afa commit 3a242b1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

UsingTestPyPI.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Using TestPyPI to consume rc builds
2+
The BotBuilder SDK rc build feed is found on [TestPyPI](https://test.pypi.org/).
3+
4+
The daily builds will be available soon through the mentioned feed as well.
5+
6+
7+
# Configure TestPyPI
8+
9+
You can tell pip to download packages from TestPyPI instead of PyPI by specifying the --index-url flag (in the example below, replace 'botbuilder-core' for the name of the library you want to install)
10+
11+
```bash
12+
$ pip install --index-url https://test.pypi.org/simple/ botbuilder-core
13+
```
14+
If you want to allow pip to also pull other packages from PyPI you can specify --extra-index-url to point to PyPI.
15+
This is useful when the package you’re testing has dependencies:
16+
17+
```bash
18+
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ botbuilder-core
19+
```

0 commit comments

Comments
 (0)