Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/civilizeddev/scalapy-demo
ScalaPy 데모 (not working)
https://github.com/civilizeddev/scalapy-demo
python scala scalapy
Last synced: 12 days ago
JSON representation
ScalaPy 데모 (not working)
- Host: GitHub
- URL: https://github.com/civilizeddev/scalapy-demo
- Owner: civilizeddev
- Created: 2021-08-10T02:07:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-13T01:32:33.000Z (over 3 years ago)
- Last Synced: 2024-12-07T04:45:18.482Z (16 days ago)
- Topics: python, scala, scalapy
- Language: Scala
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# scalapy-demo
## Installation
### Ubuntu 혹은 Windows 10 + WSL 사용자 (필수)
```
$ sudo apt update// sudo apt update error: "Release file is not yet valid" 오류 발생시:
$ sudo hwclock --hctosys$ sudo apt upgrade
$ sudo apt install -y build-essential libncurses5-dev libffi-dev libbz2-dev zlib1g zlib1g-dev libreadline-dev libsqlite3-dev
```### pyenv 설치
```
$ brew install pyenv
$ brew install pyenv-virtualenv
```### python 설치
```
$ pyenv install --list
$ pyenv install 3.9.6
$ pyenv versions
```### ~/.profile 업데이트
```
...export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/shims:$PATH"if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
```### poetry 설치
```
$ brew install poetry
```## Manage Project
### venv 생성
```
$ poetry config virtualenvs.in-project true
$ poetry config virtualenvs.path "./.venv"
$ poetry install && poetry update
```---
## References
- [shadaj/scalapy](https://github.com/shadaj/scalapy)
- [scalapy.dev](https://scalapy.dev/)