最近youtube-dl下载视频提示出错Unable to extract uploader id,使用下面命令更新
sudo curl -L https://github.com/ytdl-patched/youtube-dl/releases/latest/download/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
量化自我和极简主义的窝藏点
最近youtube-dl下载视频提示出错Unable to extract uploader id,使用下面命令更新
sudo curl -L https://github.com/ytdl-patched/youtube-dl/releases/latest/download/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
安装
apt install certbot python3-certbot-apache
申请Apache的SSL证书
certbot –apache
重启apache服务
/etc/init.d/apache2 restart
查看证书自动更新服务
systemctl status certbot.timer
1. 查看项目使用的unity editor版本
ProjectSettings/ProjectVersion.txt
2. Unity下载文件有c1后缀, 中国版; 无c1后缀, 全球版; 18及以前的中国版多点东西, 较新的没太大区别;还有个比较重要的是, UnityHub也分中国版和全球版, 中国版Hub能识别中国版和全球版Editor, 并且Hub中内容丰富一点, 包括社区内容之类的;全球版Hub则只能识别全球版Editor。
国际版下载: https://unity.com/releases/editor/archive#download-archive-2021
中国版下载: https://unity.cn/releases/full/2021
在gradle.properties,文件中添加内容
org.gradle.daemon=true
在build.gradle(:root)中,可以看到mavenCentral()拖慢,注释mavenCentral(),另外需要镜像
maven { url ‘http://maven.aliyun.com/nexus/content/groups/public/’ }
点击File / Sync project with Gradle files
Remove this chunk of code from your build.gradle(:root) in the root directory
apply plugin: ‘com.android.application’
and
android
{
compileSdkVersion 21
buildToolsVersion “20.0.0”
defaultConfig
{
applicationId “xxx.xxx.xxx”
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName “0.5”
}
}
add below in the build.gradle(:root)
apply plugin:’base’
add below in the build.gradle(:app)
android
{
packagingOptions
{
exclude
‘AndroidManifest.xml’
}
}
环境:MacOS
查看版本:java -version
查看路径:/usr/libexec/java_home -V