我创建了一个幻灯片并将照片拖放到其中。在此过程中,我还选择了最佳图像。我想在幻灯片中查看这些图像的名称或将它们导出到文本文件中。
例如,如果我想制作一个类似于 HTML 幻灯片的版本,这会有所帮助。我想得到:
幻灯片 1:image1.jpeg 幻灯片 2:image2.jpeg、image3.jpeg、image4.png ... 幻灯片 10:图片.jpg
然后我可以使用该文本文件生成具有相似内容的 HTML 文件,或者使用git
.
那可能吗?
我创建了一个幻灯片并将照片拖放到其中。在此过程中,我还选择了最佳图像。我想在幻灯片中查看这些图像的名称或将它们导出到文本文件中。
例如,如果我想制作一个类似于 HTML 幻灯片的版本,这会有所帮助。我想得到:
幻灯片 1:image1.jpeg 幻灯片 2:image2.jpeg、image3.jpeg、image4.png ... 幻灯片 10:图片.jpg
然后我可以使用该文本文件生成具有相似内容的 HTML 文件,或者使用git
.
那可能吗?
几天前我开始遇到这个问题:youtube-dl
不再适用于指向 YouTube 的链接,但适用于其他网站,如 Instagram:
$ youtube-dl https://www.instagram.com/p/B47c667AKPo/ [Instagram] B47c667AKPo:下载网页 [下载] 目的地:视频由 marieforleo-B47c667AKPo.mp4 [下载] 2.5% of 40.44MiB at 1.45MiB/s ETA 00:27^C ... $ youtube-dl https://www.youtube.com/watch?v=blHgexdxfVU 用法:youtube-dl [OPTIONS] URL [URL...] youtube-dl:错误:您必须至少提供一个 URL。 键入 youtube-dl --help 以查看所有选项的列表。
忽略带有 HTTP 地址或a--no-check-certificate
的 HTTPS 证书也会失败。几周前,同样的 YouTube 链接和语法还有效。
我升级到最新版本,2020.03.01
仍然有同样的问题。
YouTube 和 之间有什么问题youtube-dl
吗?
我正在一台机器上安装 Linux 并获得了 Ubuntu 18.04 LTS 映像。我在 macOS 上使用 MS-DOS (FAT) 格式和 GUID 分区映射方案格式化了一个 32 GB 的 Sandisk 驱动器。
我找到了磁盘的名称disk2s2
(使用磁盘工具或diskutil list
终端),按照以下说明卸载并复制dd
了图像:
diskutil unmount /dev/disk2s2
sudo dd if=~/Downloads/ubuntu-18.04.2-desktop-amd64.iso of=/dev/rdisk2s2 bs=1m
我在戴尔机器上插入了 USB,启动,按 F12 进入“启动一次”菜单,选择使用 USB 的传统启动,然后得到
Selected boot device failed. Press any key to reboot the system.
当我按照Ubuntu 的说明并使用Etcher在 USB 上刷新 ISO 映像时,它可以工作,并且我在 "Boot Once": 中看到了一个额外的选项UEFI SanDisk, Partition 1
,我选择并能够尝试 Linux。
我还需要什么来创建 Ubuntu 的可启动 USBdd
或全部在命令行中?
我在 Azure 上设置了一个运行 Ubuntu 的虚拟机:
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
然后验证 Python 二进制文件和版本:
$ which python
/usr/bin/python
$ python --version
Python 2.7.12
$ which python3
/usr/bin/python3
$ python3 --version
Python 3.5.2
我安装了 Python 3.6
$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt-get update
$ sudo apt-get install python3.6
然后我删除了它
$ sudo apt-get remove python3.6
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libpython3.6-minimal libpython3.6-stdlib python3.6-minimal
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
python3.6
0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded.
After this operation, 334 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 85368 files and directories currently installed.)
Removing python3.6 (3.6.8-1+xenial1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
但它仍然安装:
$ python3 --version
Python 3.5.2
$ python3.6 --version
Python 3.6.8
现在我不能再删除它,因为apt-get
说它没有安装:
$ sudo apt-get remove python3.6
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'python3.6' is not installed, so not removed
The following packages were automatically installed and are no longer required:
libpython3.6-minimal libpython3.6-stdlib python3.6-minimal
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
我怎样才能删除它?