본문 바로가기

분류 전체보기

(7)
Retropi (레트로파이) 관련 sudo su - root cd /home/pi git clone https://github.com/RetroFlag/retroflag-picase Build software better, together GitHub is where people build software. More than 36 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com cd RetroFlag sudo chmod 755 ./install.sh sudo ./install.sh samba 설치 후에는 \\retropie 로 접속
파이썬 텔레그램봇 라이브러리 모음 python-telegram-bot. A wrapper you can't refuse. https://github.com/python-telegram-bot/python-telegram-bot pyTelegramBotAPI. Python Telegram Bot API. https://github.com/eternnoir/pyTelegramBotAPI AIOGram. A fully asynchronous library for Telegram Bot API written with asyncio and aiohttp. https://github.com/aiogram/aiogram aiogram/aiogram Is a pretty simple and fully asynchronous library for Tel..
공부할 목록 파이썬 Database / SQL 리눅스 (우분투) - x86, x64 기반 라즈베리파이에서 리눅스 서버 구동 웹크롤링 (서버 기반) HTML/CSS - 기본 및 파이썬 기반 텔레그램 봇 구동 머신러닝 딥러닝
리눅스 우분투 아나콘다 파이참 설치하기 1. 아나콘다 설치 - CLI 기준 crul 먼저 설치 $ sudo apt-get install curl Anaconda Bash Script Download $ cd / tmp $ curl -O https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh Anaconda Distribution Repository Anaconda and Miniconda are trademarks of Anaconda, Inc. Public mirrors of this are not allowed without express permission from Anaconda, Inc. For private mirrors and technical support, we..
라즈베리파이 리눅스 설정 명령어 모음 Ubuntu Mate 기준 $ sudo raspi-config -- 부팅옵션에서 Desktop / CLI 설정 가능 Anaconda3 대신 miniconda를 설치 $ sudo add-apt-repository ppa:openjdk-r/ppa $ sudo apt-get update $ sudo apt-get install openjdk-11-jdk pycharm download 받은 후에 압축파일을 풀고 해당 폴더로 가서 (아래는 Desktop 안에 압축을 풀었을 경우) $ cd /Desktop/pycharm/bin $ sudo ./pycharm.sh 를 하면 파이참 실행이 가능함 $ sudo asupt-get install openjdk-7-jdk $ sudo apt-get install openjdk..
리눅스 우분투 서버에서 크롤링하기 workon 가상환경명 scrapy startproject tutorial
리눅스 서버설정 초기 명령어 모음 Ubuntu 기준 sudo apt-get update sudo apt-get install build-essential python -V sudo apt-get install python-pip sudo pip install virtualenv virtualenvwrapper vi .bashrc -- 맨 밑으로 가서 fi 밑에 export WORKON_HOME=$HOME/ .virtualenvs source /usr/local/bin/virtualenvwrapper.sh -- 입력모드를 끄고 :wq! 저장하고 다시 source .bashrc 가상환경 만들 때 mkvirtualenv 가상환경이름 가상환경을 빠져나오고 싶을 때 deactivate 다시 가상환경으로 들어갈 때 workon 가상환경이름 sudo..