일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- Microsoft
- chashtag
- windows
- File
- Coding
- Visual Studio
- log
- IValueConverter
- .net
- dotNET
- convert
- Github
- programmers
- logging
- commit
- git
- string
- Binding
- tls
- C#
- Process
- ListView
- csharp
- WPF
- nullable
- algorithm
- coding-test
- windows10
- 코딩테스트
- mysql
- Today
- Total
CHashtag
Ubuntu에 .NET 개발환경 세팅 본문
ubuntu는 ubuntu wsl 사용
https://ponyozzang.tistory.com/651
윈도우 10 wls 우분투 설치 방법
윈도우 10을 사용하면서 우분투 환경도 같이 사용할 수 있습니다. 우분투는 리눅스 기반이라 윈도우 환경에서 사용하고 싶은 경우에는 가상 머신을 설치해야 하거나 하는 번거로움이 있지만 윈
ponyozzang.tistory.com
그 후 크롬 및 chromedriver설치
https://tecadmin.net/setup-selenium-chromedriver-on-ubuntu/
How to Setup Selenium with ChromeDriver on Ubuntu 20.04 & 18.04
How to setup Selenium with ChromeDriver on Ubuntu, and LinuxMint systems. An example of Java program which uses Selenium standalone server
tecadmin.net
sudo curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add
# 위 command가 잘 안된다면 아래로 변경해서 실행하자.
sudo curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add
ubuntu 에서 dotnet 설치하기
난 20.04 (lts)
https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#install-the-sdk
Install .NET on Ubuntu - .NET
Demonstrates the various ways to install .NET SDK and .NET Runtime on Ubuntu.
docs.microsoft.com
만약 6.0이 아닌 5.0 을 설치하고 싶을 경우에는 6.0 -> 5.0 으로 바꿔주면 된다.
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-6.0
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y aspnetcore-runtime-6.0
dotnet interactive (dotnet-script) 사용방법
https://codez.deedx.cz/posts/interactive-csharp-on-linux/
Interactive C# on Linux - Martin CodeZ
C# interactive is a handy tool inside Visual Studio (powered by Roslyn), which allows you to experiment with blocks of C# code without the need to load up whole new solution. This post is about dotnet-script, a global dotnet CLI tool, which works everywher
codez.deedx.cz
dotnet tool install -g dotnet-script
'기타' 카테고리의 다른 글
[Github Actions] runs-on 사용방법, 사용 가능 환경 (0) | 2022.01.02 |
---|---|
[Visual Studio] 코드 줄 숫자 표시하기 (Line numbers) (0) | 2021.12.25 |
[TESAT] 테샛 시험 공부방법 & 시험 꿀팁 & 시험 결과 (1) | 2021.12.19 |
크롬(Chrome) 북마크(즐겨찾기) 사라졌을 때 해결방법 (0) | 2021.04.09 |
티스토리에서 쿠팡 파트너스 iframe 크기 오류 고치는법 (1) | 2021.03.06 |