Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.

Commit f0dc0e9

Browse files
committed
oslo-core
1 parent 4449847 commit f0dc0e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ For example, you can fine-tune [GPTJ](https://huggingface.co/EleutherAI/gpt-j-6B
3232
OSLO can be easily installed using the pip package manager.
3333
All the dependencies such as [torch](https://pypi.org/project/torch/), [transformers](https://pypi.org/project/transformers/), [dacite](https://pypi.org/project/dacite/),
3434
[ninja](https://pypi.org/project/ninja/) and [pybind11](https://pypi.org/project/pybind11/) should be installed automatically with the following command.
35-
35+
Be careful that the 'core' in the PyPI project name.
3636
```console
37-
pip install oslo
37+
pip install oslo-core
3838
```
3939

4040
Some of features rely on the C++ language.
4141
So we provide an option, `CPP_AVAILABLE`, to decide whether or not you install them.
4242

4343
- If the C++ is available:
4444
```console
45-
CPP_AVAILABLE=1 pip install oslo
45+
CPP_AVAILABLE=1 pip install oslo-core
4646
```
4747

4848
- If the C++ is not available:
4949
```console
50-
CPP_AVAILABLE=0 pip install oslo
50+
CPP_AVAILABLE=0 pip install oslo-core
5151
```
5252

5353
Note that the default value of `CPP_AVAILABLE` is 0 in Windows and 1 in Linux.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
setup(
34-
name="oslo",
34+
name="oslo-core",
3535
description="OSLO: Open Source framework for Large-scale transformer Optimization",
3636
version=VERSION["version"],
3737
long_description=open("README.md").read(),

0 commit comments

Comments
 (0)