0
0

More than 1 year has passed since last update.

desktop app by python

Posted at

開発環境

  • Python3
  • Anaconda3
  • Git + Git Bash
  • Visual Studio Code(VSCODE)
$ cat .bashrc
export PATH=$PATH:$HOME/anaconda3/:$HOME/anaconda3/Scripts/
alias python="winpty python"

layer pattern 1

  • FG : node.js + vue.js
  • BG : python + fastapi
  • DB : excel

layer pattern 2

Docker + Anaconda3
* https://docs.microsoft.com/ja-jp/windows/wsl/install-win10
* https://python.kirikutitarou.com/2019/07/docker-anaconda.html

pic01.png

$ docker volume create --name source
$ docker run --name anaconda3 -v source:/opt/source -v /c/database:/opt/database -it continuumio/anaconda3 /bin/bash
$ docker run --name anaconda3 -v /c/users/XXXX/home/dockermount:/root/workspace -it continuumio/anaconda3 /bin/bash

image.png

$ git config --global user.name "GitHubに登録しているユーザー名"
$ git config --global user.email GitHubに登録しているメールアドレス

python実行環境としてどうやって配るか

pythonをいれてもらえばいい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0